home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / Mig_Done.c < prev    next >
C/C++ Source or Header  |  1990-06-22  |  1KB  |  62 lines

  1. /* 
  2.  * Mig_Done.c --
  3.  *
  4.  *    Source code for the Mig_Done procedure, which is a backward-compatible
  5.  *    interface to the migration daemon.
  6.  *
  7.  * Copyright 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/Mig_Done.c,v 2.1 90/06/22 14:58:19 douglis Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include <sprite.h>
  23. #include <mig.h>
  24. #include <host.h>
  25. #include <errno.h>
  26. #include <stdio.h>
  27.  
  28. extern int errno;
  29. extern char *strerror();
  30. extern char *malloc();
  31.  
  32.  
  33. /*
  34.  *----------------------------------------------------------------------
  35.  *
  36.  * Mig_Done --
  37.  *
  38.  *    Record that a migrated process has finished running on a particular
  39.  *    host.
  40.  *
  41.  * Results:
  42.  *    A non-zero status indicates an error, in which case errno reflects
  43.  *    the error from the migration daemon.
  44.  *
  45.  * Side effects:
  46.  *      None.
  47.  *
  48.  *----------------------------------------------------------------------
  49.  */
  50. int
  51. Mig_Done(hostID)
  52.     int hostID;            /* Host to return. */
  53. {
  54.     int hostArray[1];
  55.  
  56.     hostArray[0] = hostID;
  57.     
  58.     return(Mig_ReturnHosts(1, hostArray));
  59. }
  60.  
  61.  
  62.